Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | /* Irrlicht Library Wrapper Created by Nathan Adams Copyright (C) 2007 This software is licensed under the GNU/GPL. This software may not be used for commerical purposes. */ #include <irrlicht.h> #include "IrrLibBase.h" using namespace irr; using namespace core; using namespace scene; using namespace video; using namespace io; using namespace gui; using namespace std; void IrrLibBase::SetDriver(IVideoDriver* driver) //can be overloaded { this ->driver = driver; } void IrrLibBase::SetSmgr(ISceneManager* smgr) { this ->smgr = smgr; } |
Source at commit ca2aafbed07a created 11 years 4 months ago. By Nathan Adams, Migrating from google code |
---|